home *** CD-ROM | disk | FTP | other *** search
Text File | 1999-04-15 | 745 b | 32 lines | [TEXT/MPS ] |
- /*
- File: ChooserPACK.cp
-
- Contains: Implementation of the Chooser's PACK jump table.
-
-
-
- Copyright: © 1991-1997 by Apple Computer, Inc., all rights reserved.
-
- Change History:
-
- 18 Mar 98 gp Added
-
- To Do:
- */
-
- #include "Chooser.h"
-
- /**************************************************************************************
- Note: Main must get linked at the very beginning of the first file because
- the jump table must be the first entry in the PACK resource. This
- means that no headers that contain linked routines (eg, inlines)
- can be included before this routine.
- **************************************************************************************/
- asm void main(void);
- asm void main(void)
- {
- // Jump Table
- jmp Chooser
- };
-
-